You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718
  1. import React from 'react'
  2. import Main from '@/app/components/explore/installed-app'
  3. export type IInstalledAppProps = {
  4. params: {
  5. appId: string
  6. }
  7. }
  8. // Using Next.js page convention for async server components
  9. async function InstalledApp({ params }: IInstalledAppProps) {
  10. const appId = (await params).appId
  11. return (
  12. <Main id={appId} />
  13. )
  14. }
  15. export default InstalledApp